Skip to content

docs: add KEP-0004 async upload registry abstraction#2534

Draft
jonburdo wants to merge 1 commit intokubeflow:mainfrom
jonburdo:kep-0004-async-upload-registry-abstraction
Draft

docs: add KEP-0004 async upload registry abstraction#2534
jonburdo wants to merge 1 commit intokubeflow:mainfrom
jonburdo:kep-0004-async-upload-registry-abstraction

Conversation

@jonburdo
Copy link
Copy Markdown
Member

@jonburdo jonburdo commented Apr 2, 2026

Propose an abstract interface for model registry operations in the async-upload job, enabling support for multiple registry backends (e.g. MLflow) while keeping Kubeflow as the default.

AI-assisted: Claude Code (Opus 4.6)

Description

How Has This Been Tested?

Merge criteria:

  • All the commits have been signed-off (To pass the DCO check)
  • The commits have meaningful messages
  • Automated tests are provided as part of the PR for major new functionalities; testing instructions have been added in the PR body (for PRs involving changes that are not immediately obvious).
  • The developer has manually tested the changes and verified that the changes work.
  • Code changes follow the kubeflow contribution guidelines.
  • For first time contributors: Please reach out to the Reviewers to ensure all tests are being run, ensuring the label ok-to-test has been added to the PR.

If you have UI changes

  • The developer has added tests or explained why testing cannot be added.
  • Included any necessary screenshots or gifs if it was a UI change.
  • Verify that UI/UX changes conform the UX guidelines for Kubeflow.

Propose an abstract interface for model registry operations in
the async-upload job, enabling support for multiple registry
backends (e.g. MLflow) while keeping Kubeflow as the default.

AI-assisted: Claude Code (Opus 4.6)
Signed-off-by: Jon Burdo <jon@jonburdo.com>
@google-oss-prow
Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please ask for approval from jonburdo. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@google-oss-prow google-oss-prow bot requested a review from fege April 2, 2026 15:40
Comment on lines +224 to +236
def get_registered_model_by_id(self, model_id: str) -> RegisteredModel: ...

def get_registered_model_by_name(self, name: str) -> RegisteredModel: ...

def get_model_version_by_params(
self, registered_model_id: str, name: str
) -> ModelVersion: ...

def get_model_artifact_by_id(self, artifact_id: str) -> ModelArtifact: ...

def update_model_artifact(self, artifact: ModelArtifact) -> ModelArtifact: ...

def delete_registered_model(self, model_id: str) -> None: ...
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need to see if we can simplify a bit and avoid requiring all of these

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant